home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / misc / unix / unix_boot.lha / src / bootdata.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-09  |  579 b   |  20 lines

  1. /*
  2.  *    Copyright (C) 1991, Commodore Business Machines, Inc.
  3.  */
  4.  
  5. /*
  6.  *    This structure is used by the boot code, and is part of the
  7.  *    boot/kernel interface.
  8.  */
  9.  
  10. struct BootData {
  11.     unsigned long bd_entry;        /* start address */
  12.     unsigned long bd_tvaddr;        /* text start virtual address */
  13.     unsigned long bd_toffset;        /* text segment offset */
  14.     unsigned long bd_tsize;        /* text segment size */
  15.     unsigned long bd_dvaddr;        /* data start virtual address */
  16.     unsigned long bd_doffset;        /* data segment offset */
  17.     unsigned long bd_dsize;        /* data segment size */
  18. };
  19.  
  20.